/* Remove `text-decoration` and setting the colour is easy */
#sidelinks a {
color:black;
text-decoration:none;
}
/* So is removing the dots */
#sidelinks ul {
list-style: none; /* <--- this right here */
padding: 0;
margin: 0;
}
/* -GillesC */